home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000042_fdc@watsun.cc.columbia.edu_Tue Oct 16 10:07:31 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  53 lines

  1. Article: 12853 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!not-for-mail
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: scripting in server mode
  6. Date: 16 Oct 2001 10:06:54 -0400
  7. Organization: Columbia University
  8. Lines: 36
  9. Message-ID: <9qhetu$jd9@watsun.cc.columbia.edu>
  10. References: <336f652d.0110151140.59de71dd@posting.google.com> <9qffam$mts$1@newsmaster.cc.columbia.edu> <336f652d.0110160550.606670bc@posting.google.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1003241252 7747 128.59.39.2 (16 Oct 2001 14:07:32 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 16 Oct 2001 14:07:32 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12853
  16.  
  17. In article <336f652d.0110160550.606670bc@posting.google.com>,
  18. Shifeux <shifeux@hotmail.com> wrote:
  19. : Thanks for info. 
  20. : > What do you mean by "session"?  You can log all the server's actions
  21. : > in a transaction log.  Just add:
  22. : > 
  23. : >   LOG TRANSACTIONS filename
  24. : > 
  25. : > to the script before starting the server, specifying the desired file
  26. : > for the log.
  27. : I was calling this a session log. This works great.
  28. : > There are probably better ways to do what you want.  If you want to delete
  29. : > each file from the source after, and only if, it has been successfully
  30. : > transferred, there is a /DELETE switch on the client SEND and GET commands
  31. : > for this.  For tutorials on "atomic file movement", see:
  32. : I was trying minimize the work for the client side, trying to make it
  33. : as simple as possible for the client, but you are correct this will be
  34. : just fine. I appreciate the help.  I see kermit 8 has support for an
  35. : ssh connection, does in by chance also support a sFTP session?
  36. No, but it does support FTP, and if you want FTP + security, you have your
  37. choice of the following IETF-approved security methods:
  38.  
  39.   Kerberos IV
  40.   Kerberos V
  41.   SSL/TLS
  42.   Stanford Secure Remote Password (SRP)
  43.  
  44. Obviously, these require a server that uses one or more of the same 
  45. security methods.
  46.  
  47. - Frank
  48.